Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1 KB

4.4.1 - 属性列表.md

File metadata and controls

34 lines (26 loc) · 1 KB

属性列表

errCode

类型为int型。当connect/send/recv/close失败或者超时时,会自动设置Swoole\Coroutine\Http\Client->errCode的值。
errCode的值等于Linux errno。可使用socket_strerror将错误码转为错误信息。

echo socket_strerror($client->errCode);
  • 如果connect refuse,错误码为111
  • 如果超时,错误码为110

附录:Linux的errno定义

body

存储上次请求的返回包体

$cli = new Swoole\Coroutine\Http\Client('127.0.0.1', 80);
$cli->get('/index.php');
echo $cli->body;
$cli->close();

statusCode

Http状态码,如200404等。状态码如果为负数,表示连接存在问题。

  • -1:连接超时,服务器未监听端口或网络丢失,可以读取$errCode获取具体的网络错误码
  • -2:请求超时,服务器未在规定的timeout时间内返回response
  • -3:客户端请求发出后,服务器强制切断连接